home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-26 | 694 b | 34 lines | [TEXT/ScoM] |
- (def-orchestra 'orchestra
- all-instruments (piano)
- piano (voice1 voice2 voice3)
- )
-
- (create-tonality slendro-pentatonic
- '(1/1 8/7 4/3 3/2 7/4))
-
- (def-section sect-a
- default
- zone '(2/1)
- tonality (activate-tonality (slendro-pentatonic c 4 4024))
- length '(1/8)
- duration '(1/8)
- velocity '(64)
- voice1
- symbol '(a b c d e f g h i j k l m n o p)
- channel 1
- voice2
- symbol (symbol-transpose 2 '(a b c d e f g h i j k l m n o p))
- channel 2
- voice3
- symbol (symbol-transpose 4 '(a b c d e f g h i j k l m n o p))
- channel 3
- )
-
- (def-tempo 60)
-
- (midiport :printer)
-
- (play-file-p "tunings"
- all-instruments '(sect-a)
- )
-